home *** CD-ROM | disk | FTP | other *** search
/ MacWorld: Conference & Expo 2005 / Macworld Conference and Expo - Documentation CD-ROM (2004).iso / mac / Adobe Reader 6.0 / Adobe Reader 6.0.app / Contents / Resources / Adobe Reader.rsrc / EXVW_10089_admAnnotLibrary < prev    next >
Text File  |  2004-01-30  |  596b  |  23 lines

  1. gMaxWidth = max(
  2.     zstring_width(zstring: '$$$/Dialogs/LibraryCategory'),
  3.     zstring_width(zstring: '$$$/Dialogs/LibraryName'));
  4.  
  5. dialog(name: '$$$/Dialogs/LibrarySave')
  6. {
  7.     group()
  8.     {
  9.         view(align_children: align_row)
  10.         {
  11.             static_text(name: '$$$/Dialogs/LibraryCategory', width : gMaxWidth, alignment: align_right);
  12.             edit_text(item_id: 'Cate', width: max_char_width() * 20);
  13.         }
  14.  
  15.         view(align_children: align_row)
  16.         {
  17.             static_text(name: '$$$/Dialogs/LibraryName', width : gMaxWidth, alignment: align_right);
  18.             edit_text(item_id: 'Name', width: max_char_width() * 20);
  19.         }
  20.         ok_cancel();
  21.     }
  22. }
  23.